home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day06 / second.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-08  |  804 b   |  22 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef SecondH
  3. #define SecondH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TSecondForm : public TForm
  11. {
  12. __published:    // IDE-managed Components 
  13.     TLabel *Label1;
  14. private:        // User declarations
  15. public:         // User declarations
  16.     virtual __fastcall TSecondForm(TComponent* Owner);
  17. };
  18. //---------------------------------------------------------------------------
  19. extern TSecondForm *SecondForm;
  20. //---------------------------------------------------------------------------
  21. #endif
  22.